home *** CD-ROM | disk | FTP | other *** search
- ;;
- ;; This macro will call a routine to skip "x" number of lines
- ;;
- SkipLines Macro Number
- IFB <number>
- IF1
- %Out Missing parameter in SKIPLINES macro
- .Err
- Exitm
- EndIf
- EndIf
- IFNDEF NextLine
- Extrn NextLine:Near
- EndIf
- Push AX ; Save register
- Mov AL,Number ; The number of lines to skip
- Call NextLine ; Do it
- Pop AX ; Restore register
- Endm